home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / mozilla-thunderbird.prerm < prev    next >
Encoding:
Text File  |  2007-04-03  |  878 b   |  28 lines

  1. #!/bin/sh -e
  2.  
  3. case "$1" in
  4.     upgrade|remove)
  5. #    rm -rf /var/lib/mozilla-thunderbird/chrome/overlayinfo
  6. #    rm -f /usr/lib/mozilla-thunderbird/chrome/chrome.rdf
  7. #    rm -f /var/lib/mozilla-thunderbird/chrome/*.rdf
  8. #    rm -f /var/lib/mozilla-thunderbird/chrome/installed-chrome.txt
  9. #    rm -f /var/lib/mozilla-thunderbird/components/*.dat
  10. #    rm -f /usr/lib/mozilla-thunderbird/components/*.dat
  11.  
  12. #    if [ -L /usr/lib/mozilla-thunderbird/defaults/pref ]; then
  13. #       rm -f /usr/lib/mozilla-thunderbird/defaults/pref
  14. #    fi
  15. #    if [ -L /usr/lib/mozilla-thunderbird/greprefs ]; then
  16. #       rm -f /usr/lib/mozilla-thunderbird/greprefs
  17. #    fi
  18.  
  19. #     if [ -d /var/lib/mozilla-thunderbird/ ]; then
  20. #        find /var/lib/mozilla-thunderbird/ -type d -empty \
  21. #            | xargs --no-run-if-empty rmdir --ignore-fail-on-non-empty -p
  22. #     fi
  23.       ;;
  24.     *)
  25.       ;;
  26. esac
  27.  
  28.